home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000261_news@columbia.edu_Wed Nov 23 19:30:19 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01643
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 11:23:18 -0500
  3. Received: by apakabar.cc.columbia.edu id AA05676
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 11:23:15 -0500
  5. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  6. From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: MS-DOS 3.1.3 problems
  9. Date: 23 Nov 1994 14:30:19 -0500
  10. Organization: Broken Toys Unlimited
  11. Lines: 101
  12. Message-Id: <3b058b$aeb@chopin.udel.edu>
  13. References: <3avsfs$iq2@news.cais.com>
  14. Nntp-Posting-Host: chopin.udel.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3avsfs$iq2@news.cais.com>,  <pifer@cais2.cais.com> wrote:
  18. :>From: darkstar@chopin.udel.edu (Jerry Alexandratos)
  19. :>
  20. :>:    1) The status line at the bottom of the screen comes back on
  21. :>:when connecting to the host, even though mode is set to off.
  22. :>:
  23. :>:    2) Terminals have been known to go dead after some use on the network.
  24. :>:
  25. :>:    3) "rollback 0" does not work the same as it did in 3.1.1.
  26. :>:
  27. :>:    4) File transfer does not work. We set terminalr and terminals
  28. :>:and execute the local escape sequence but the PC does not see it. Again,
  29. :>:it works in 3.11 version.
  30. :>:
  31. :>:    5) Inverse video does not work with multi-colors. I believe problem
  32. :>:4 and 5 are related since they send escape sequences to the PC and are not
  33. :>:getting to the PC.
  34. :>:
  35. :>Hmm, well, here's what I would take a crack at...
  36. :>
  37. :>1) See if there isn't a macro that connects you to a machine and
  38. :>   changes something around.  Do you connect by hand (set port tcp ...) or
  39. :>   do you have a macro handle all of this? 
  40. :
  41. :I have removed all macros out of the `take` file. The problem appears
  42. :to be the way the UNIX system is initializing the terminal type, 
  43. :
  44. :ie. tput init
  45. :
  46. :That command seems to reset the terminal which includes adding kermits'
  47. :status line back. This worked in V3.13.
  48.  
  49. Okay, what's probably happening is that tput is trying to (and
  50. succeeding at reinitializing your screen).  What you want to do is tell
  51. tput to set the information for the host and just reset the terminal
  52. (thus you're assuming everything on the terminal is fine--which it
  53. should be).  So, just use the ``tput reset'' command in your .login. 
  54. The ``reset'' argument tells it to just reset the terminal instead of
  55. reinitializing it...
  56.  
  57. :>2) Need more information for this one.  What type of network, etc...
  58. :
  59. :I am not sure the real problem behind this -- it could be that our LAN
  60. :is just experiencing some traffic problems causing the drop in connection.
  61. :I will try to find out more on this as the other problems are ironed out.
  62. :
  63. :>3) What was the original functionality that doesn't work now.  Are you
  64. :>   sure that you didn't change some local setting somewhere in your
  65. :>   mscustom.ini after upgrading?
  66. :
  67. :There might just be a misunderstood idea of how it works; most people here
  68. :think by setting rollback to 0 that there will be unlimited amount of
  69. :screens to be saved. I will have to clarify this everyone involved here so
  70. :that this one can be resolved without any testing involved. 
  71.  
  72. Well, I would chalk it up to a misunderstanding.  For as long as I can
  73. remember, rollback 0 meant to turn off rollback.  In fact, give me a
  74. sec...  Yep, double-checking in my Using MS-Kermit v3.11 (didn't want
  75. to use the latest, just in case something may have changed), it says
  76. the same thing.
  77.  
  78. :>4) Terminals and Terminalr don't exist anymore.  Check the *.upd and
  79. :>   *.bwr files.  Their funcionality has been replace by using apc command
  80. :>   codes.  If you look at the C-Kermit ini files, you will see a bunch
  81. :>   of macros that use apc to send sequences down to the pc to do
  82. :>   ``one-sided'' file transfers.
  83. :
  84. :I have looked up the apc in the kermit.upd but have not come upon how to
  85. :set it correctly on the PC side. There are examples on to do that same on
  86. :the host side but do not relate equivalently. I also do not have .ini files
  87. :where they are defined. Do you have any examples of such?
  88.  
  89. Okay, here are the macros from C-Kermit:
  90.  
  91. define pcget apc {send \%1 \%2}, receive
  92. define pcsend asg \%9 \ffiles(\%1),-
  93.   if = 0 \%9 end 1 {\?File not found},-
  94.   set delay 1, apc receive,-
  95.   if = 1 \%9 send \%1 \%2,-  ; Single file with as-name
  96.   else send \%1              ; or wildcard with no as-name
  97.  
  98. Make sure you do ``set term apc on'' to enable this feature.  I think
  99. that MS-Kermit only accepts and understand APC signals, but doesn't
  100. send and out.
  101.  
  102. :>5) Hmmm...  I don't know what to say for this one.
  103. :
  104. :I am not sure either but will get to this one when the others are resolved.
  105. :
  106. :>Hope this helped a little.
  107. :>
  108. :Thanks for the suggestions and for any other ideas.
  109.  
  110. Glad to be of help.
  111.  
  112.         --Jerry
  113.  
  114. -- 
  115. |>  Jerry Alexandratos                **  "vengo de la tierra del    <|
  116. |>  darkstar@strauss.udel.edu         **   fuego ten cuidado cuando  <|
  117. |>  darkstar@canary.pearson.udel.edu  **   llamas mi nombre..."      <|